home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / stdio / __aprintf.c next >
C/C++ Source or Header  |  1999-01-01  |  214b  |  13 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int __aprintf(const char *format,...)
  5. {
  6.     int n;va_list vl;
  7.     va_start(vl,format);
  8.     n=vfprintf(stderr,format,vl);
  9.     va_end(vl);
  10.     fflush(stderr);
  11.     return(n);
  12. }
  13.